home *** CD-ROM | disk | FTP | other *** search
- /* (C) Copyright 1991 Dave Fritsche (wb8zxu), All Rights Reserved.
- *
- * Redistribution and use in source and binary forms are permitted for
- * non-commercial use, provided that the above copyright notice and this
- * paragraph are duplicated in all such forms. THIS SOFTWARE IS PROVIDED
- * ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
- * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
- * FITNESS FOR A PARTICULAR PURPOSE.
- */
- #include <stdio.h>
- #include <ctype.h>
- #include "screen.h"
-
- proc00a()
- {
-
- /* INSTALL KA9Q */
- if ( (ifd[0][0] == 'y') || (ifd[0][0] == 'Y') )
- ka9q = 1;
- else
- ka9q = 0;
-
- /* INSTALL G1EMM */
- if ( (ifd[1][0] == 'y') || (ifd[1][0] == 'Y') )
- g1emm = 1;
- else
- g1emm = 0;
-
- /* INSTALL BM */
- if ( (ifd[2][0] == 'y') || (ifd[2][0] == 'Y') )
- bm = 1;
- else
- bm = 0;
-
- /* INSTALL NETNEWS */
- if ( (ifd[3][0] == 'y') || (ifd[3][0] == 'Y') )
- netnews = 1;
- else
- netnews = 0;
- }
-